/* ==========================================================================
   PROJECT MANAGEMENT PAGE SPECIFIC STYLES
   ========================================================================== */

/* ── 1. HERO BANNER ── */
.pm-hero {
    position: relative;
    height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('Assets/Project Management hero bg.jpg') no-repeat center center/cover;
    text-align: center;
    color: var(--white);
    overflow: hidden;
    isolation: isolate;
}

.hero-overlay-mesh {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle, rgba(248, 147, 32, 0.08) 1px, transparent 1px);
    background-size: 32px 32px;
    z-index: 1;
    opacity: 0.8;
}

.pm-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(10, 12, 17, 0.9) 0%,
        rgba(10, 12, 17, 0.65) 60%,
        rgba(10, 12, 17, 0.95) 100%
    );
    z-index: 2;
}

.pm-hero-content {
    position: relative;
    z-index: 3;
    padding: 0 24px;
    max-width: 880px;
    transform: translateY(15px);
    animation: heroFadeIn 0.8s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

.pm-hero-title {
    font-family: var(--font-heading);
    font-size: 52px;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 16px;
    color: var(--white);
    letter-spacing: 1px;
    line-height: 1.15;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.pm-hero-subtitle {
    font-size: 20px;
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 30px;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.breadcrumbs {
    font-size: 12.5px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.65);
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 10px 24px;
    border-radius: 40px;
    backdrop-filter: blur(8px);
}

.breadcrumbs a {
    color: rgba(255, 255, 255, 0.65);
    transition: var(--transition);
}

.breadcrumbs a:hover {
    color: var(--primary-color);
}

.breadcrumbs i {
    font-size: 9px;
    color: var(--primary-color);
}

.breadcrumbs span {
    color: var(--primary-color);
}

@keyframes heroFadeIn {
    to { transform: translateY(0); opacity: 1; }
}


/* ── 2. OVERVIEW SECTION ── */
.pm-overview-section {
    padding: 120px 0;
    background: #0f1117;
    position: relative;
}

.overview-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 80px;
    align-items: center;
}

.section-subtitle {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 24px;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.overview-lead {
    font-size: 18px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 24px;
    line-height: 1.65;
    border-left: 4px solid var(--primary-color);
    padding-left: 20px;
}

.overview-p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 20px;
    line-height: 1.75;
}

.overview-highlights {
    display: flex;
    gap: 24px;
    margin-top: 36px;
}

.highlight-box-modern {
    flex: 1;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-left: 4px solid var(--primary-color);
    padding: 22px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.highlight-box-modern:hover {
    transform: translateY(-4px);
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.04);
}

.hb-icon {
    font-size: 26px;
    color: var(--primary-color);
    background: rgba(248, 147, 32, 0.12);
    width: 50px;
    height: 50px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.highlight-num {
    display: block;
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 800;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 2px;
}

.highlight-label {
    font-size: 11.5px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.55);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Overlapping Image layout */
.overview-images {
    position: relative;
    display: flex;
    flex-direction: column;
}

.img-wrapper {
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.75s cubic-bezier(0.25, 1, 0.5, 1);
}

.main-img {
    width: 90%;
    height: 380px;
    z-index: 1;
}

.overlapping-img {
    width: 75%;
    height: 260px;
    align-self: flex-end;
    margin-top: -120px;
    z-index: 2;
    border: 6px solid #0f1117;
}

.img-wrapper:hover img {
    transform: scale(1.06);
}

/* Experience Badge style SNC */
.experience-badge-modern {
    position: absolute;
    left: -20px;
    bottom: -20px;
    background: #151821;
    color: var(--white);
    padding: 22px 30px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 18px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5);
    z-index: 3;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 3px solid var(--primary-color);
}

.experience-badge-modern .badge-ring {
    position: absolute;
    inset: 4px;
    border: 1px dashed rgba(248, 147, 32, 0.25);
    border-radius: 6px;
    pointer-events: none;
}

.experience-badge-modern i {
    font-size: 32px;
    color: var(--primary-color);
}

.experience-badge-modern h4 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 2px;
    letter-spacing: -0.3px;
}

.experience-badge-modern p {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.45);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}


/* ── 3. SERVICES GRID SECTION ── */
.pm-services-section {
    padding: 120px 0;
    background: #090a0f;
    position: relative;
}

.section-header-centered {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 60px;
}

.title-bar {
    width: 60px;
    height: 3px;
    background: var(--primary-color);
    margin: 16px auto 0;
    border-radius: 2px;
}

.services-grid-new {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.service-card-new {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 40px 32px;
    border-radius: 12px;
    transition: transform 0.45s cubic-bezier(0.25, 1, 0.5, 1),
                box-shadow 0.45s cubic-bezier(0.25, 1, 0.5, 1),
                border-color 0.3s ease,
                background 0.3s ease;
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.card-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top left, rgba(248, 147, 32, 0.1) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.service-card-new:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.55);
    border-color: rgba(248, 147, 32, 0.35);
    background: rgba(255, 255, 255, 0.04);
}

.service-card-new:hover .card-glow {
    opacity: 1;
}

.card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 28px;
    position: relative;
    z-index: 1;
}

.card-icon-box {
    width: 54px;
    height: 54px;
    border-radius: 10px;
    background: rgba(248, 147, 32, 0.12);
    border: 1px solid rgba(248, 147, 32, 0.3);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: transform 0.45s cubic-bezier(0.25, 1, 0.5, 1),
                background 0.3s ease,
                color 0.3s ease,
                border-color 0.3s ease;
}

.card-number {
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.15);
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.service-card-new:hover .card-icon-box {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
    transform: scale(1.08) rotate(8deg);
}

.service-card-new:hover .card-number {
    color: var(--primary-color);
}

.service-card-new h3 {
    font-family: var(--font-heading);
    font-size: 19px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 14px;
    line-height: 1.35;
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
}

.service-card-new:hover h3 {
    color: var(--primary-color);
}

.service-card-new p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    margin: 0;
    position: relative;
    z-index: 1;
}


/* ── 4. PROCESS SECTION (TIMELINE) ── */
.pm-process-section {
    padding: 120px 0;
    background: #0f1117;
    position: relative;
}

.timeline-container {
    position: relative;
    max-width: 900px;
    margin: 60px auto 0;
    padding: 10px 0;
}

.timeline-line {
    position: absolute;
    left: 27px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(
        to bottom,
        var(--primary-color) 0%,
        rgba(248, 147, 32, 0.4) 50%,
        rgba(248, 147, 32, 0.05) 100%
    );
}

.timeline-block {
    position: relative;
    padding-left: 80px;
    margin-bottom: 48px;
}

.timeline-block:last-child {
    margin-bottom: 0;
}

.timeline-number {
    position: absolute;
    left: 8px;
    top: 4px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #151821;
    border: 2px solid var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 800;
    color: var(--primary-color);
    z-index: 2;
    box-shadow: 0 4px 12px rgba(248, 147, 32, 0.2);
    transition: transform 0.45s cubic-bezier(0.25, 1, 0.5, 1),
                background 0.3s ease,
                color 0.3s ease,
                box-shadow 0.3s ease;
}

.timeline-content-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-left: 4px solid var(--primary-color);
    border-radius: 8px;
    padding: 30px 36px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
    position: relative;
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1),
                box-shadow 0.4s cubic-bezier(0.25, 1, 0.5, 1),
                background 0.3s ease;
}

.timeline-glow {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(248, 147, 32, 0.04) 0%, transparent 80%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.timeline-content-card h3 {
    font-family: var(--font-heading);
    font-size: 19px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
}

.timeline-content-card p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.6;
    margin: 0;
    position: relative;
    z-index: 1;
}

/* Timeline Hover Interactive Effects */
.timeline-block:hover .timeline-number {
    background: var(--primary-color);
    color: var(--white);
    box-shadow: 0 0 18px rgba(248, 147, 32, 0.45);
    transform: scale(1.15);
}

.timeline-block:hover .timeline-content-card {
    transform: translateX(10px);
    background: rgba(255, 255, 255, 0.04);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.35);
}

.timeline-block:hover .timeline-glow {
    opacity: 1;
}

.timeline-block:hover .timeline-content-card h3 {
    color: var(--primary-color);
}


/* ── 5. CAPABILITIES GRID SECTION ── */
.pm-capabilities-section {
    padding: 120px 0;
    background: #090a0f;
    position: relative;
}

.capabilities-box {
    background: linear-gradient(145deg, #161821 0%, #0d0f14 100%);
    border-radius: 16px;
    padding: 60px 70px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    position: relative;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.55);
}

.capabilities-box::after {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(248, 147, 32, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.capabilities-intro {
    font-size: 16.5px;
    line-height: 1.65;
    margin-bottom: 44px;
    max-width: 720px;
}

.capabilities-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 40px;
}

.capability-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 24px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.capability-item:hover {
    transform: translateY(-4px);
    border-color: rgba(248, 147, 32, 0.3);
    background: rgba(255, 255, 255, 0.04);
}

.capability-card-icon {
    font-size: 28px;
    color: var(--primary-color);
}

.capability-item h4 {
    font-family: var(--font-heading);
    font-size: 17px;
    font-weight: 700;
    color: var(--white);
    margin: 0;
}

.capability-item p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.5;
    margin: 0;
}


/* ── 6. DETAILED CHECKLIST SOLUTIONS ── */
.pm-solutions-section {
    padding: 120px 0;
    background: #0f1117;
}

.solutions-box {
    background: linear-gradient(145deg, #161821 0%, #0d0f14 100%);
    border-radius: 16px;
    padding: 60px 70px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    position: relative;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.55);
}

.solutions-box::after {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(248, 147, 32, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.text-orange {
    color: var(--primary-color) !important;
}

.text-white {
    color: var(--white) !important;
}

.text-gray {
    color: rgba(255, 255, 255, 0.55) !important;
}

.title-bar-left {
    width: 50px;
    height: 3px;
    background: var(--primary-color);
    margin: 16px 0 28px;
    border-radius: 2px;
}

.solutions-intro {
    font-size: 16.5px;
    line-height: 1.65;
    margin-bottom: 44px;
    max-width: 720px;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px 60px;
}

.solution-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 14.5px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: padding-left 0.3s ease, color 0.3s ease;
}

.solution-item:hover {
    padding-left: 8px;
    color: var(--primary-color);
}

.solution-item i {
    color: var(--primary-color);
    font-size: 16px;
    flex-shrink: 0;
}


/* ── 7. TECHNOLOGY GRID ── */
.pm-tech-section {
    padding: 120px 0;
    background: #090a0f;
    position: relative;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 56px;
}

.tech-card {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    padding: 40px 32px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: transform 0.45s cubic-bezier(0.25, 1, 0.5, 1),
                box-shadow 0.45s cubic-bezier(0.25, 1, 0.5, 1),
                border-color 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    position: relative;
    overflow: hidden;
}

.tech-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top left, rgba(248, 147, 32, 0.1) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.tech-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.55);
    border-color: rgba(248, 147, 32, 0.3);
}

.tech-card:hover .tech-glow {
    opacity: 1;
}

.tech-icon {
    font-size: 32px;
    color: var(--primary-color);
    background: rgba(248, 147, 32, 0.12);
    width: 60px;
    height: 60px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.45s cubic-bezier(0.25, 1, 0.5, 1),
                background 0.3s ease,
                color 0.3s ease;
}

.tech-card:hover .tech-icon {
    background: var(--primary-color);
    color: var(--white);
    transform: scale(1.08) rotate(8deg);
}

.tech-card h3 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    margin: 0;
    transition: color 0.3s ease;
}

.tech-card:hover h3 {
    color: var(--primary-color);
}

.tech-card p {
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.6;
    margin: 0;
}


/* ── 8. QUALITY & SAFETY BANNER ── */
.pm-commitment-section {
    position: relative;
    padding: 130px 0;
    overflow: hidden;
    color: var(--white);
    text-align: center;
    background: #0c0e12;
}

.commitment-bg-overlay-img {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: brightness(0.2);
    z-index: 1;
    transform: scale(1.02);
}

.commitment-overlay-dark {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(10, 12, 17, 0.95) 0%,
        rgba(248, 147, 32, 0.12) 100%
    );
    z-index: 2;
}

.commitment-content-wrapper {
    position: relative;
    z-index: 3;
    max-width: 820px;
    margin: 0 auto;
}

.commitment-badge-icon {
    font-size: 46px;
    color: var(--primary-color);
    margin-bottom: 24px;
    animation: commitmentPulse 3s infinite;
}

.commitment-content-wrapper h2 {
    font-family: var(--font-heading);
    font-size: 38px;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.commitment-quote {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 25px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
}

.commitment-quote-sub {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.6);
}

.commitment-standards {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.commitment-standards span {
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 12px 24px;
    border-radius: 4px;
    backdrop-filter: blur(8px);
}

.commitment-standards i {
    color: var(--primary-color);
    font-size: 14px;
}

@keyframes commitmentPulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.06); opacity: 0.85; }
    100% { transform: scale(1); opacity: 1; }
}


/* ── 9. CTA SECTION ── */
.pm-cta-section {
    padding: 120px 0;
    background: #090a0f;
}

.cta-box {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    padding: 70px 60px;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.55);
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(248, 147, 32, 0.04) 0%, transparent 70%);
}

.cta-box h2 {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.cta-box p {
    font-size: 15.5px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    margin: 0 auto 32px;
    max-width: 720px;
}

.cta-box h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.cta-sub {
    font-size: 14.5px;
    color: rgba(255, 255, 255, 0.45) !important;
    margin-bottom: 36px !important;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    position: relative;
    z-index: 1;
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 34px;
    font-family: var(--font-heading);
    font-size: 13.5px;
    font-weight: 700;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
}

.btn-cta-primary {
    background: var(--primary-color);
    color: var(--white);
}

.btn-cta-primary:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(248, 147, 32, 0.35);
}

.btn-cta-outline {
    border: 2px solid rgba(255, 255, 255, 0.25);
    color: var(--white);
    background: transparent;
}

.btn-cta-outline:hover {
    background: var(--white);
    color: #090a0f;
    border-color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.15);
}


/* ==========================================================================
   10. RESPONSIVE MEDIA QUERIES
   ========================================================================== */

@media (max-width: 1200px) {
    .container {
        padding: 0 30px;
    }

    .capabilities-box,
    .solutions-box {
        padding: 50px;
    }
}

@media (max-width: 992px) {
    .overview-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .main-img {
        width: 100%;
        height: 380px;
    }

    .overlapping-img {
        display: none; /* Hide secondary image on smaller screens */
    }

    .experience-badge-modern {
        left: 20px;
        bottom: 20px;
    }

    .services-grid-new,
    .tech-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .capabilities-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .capabilities-box,
    .solutions-box {
        padding: 40px;
    }

    .solutions-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .pm-hero {
        height: 360px;
    }

    .pm-hero-title {
        font-size: 38px;
    }

    .section-title {
        font-size: 32px;
    }

    .cta-box {
        padding: 50px 30px;
    }

    .cta-box h2 {
        font-size: 28px;
    }
}

@media (max-width: 576px) {
    .pm-overview-section,
    .pm-services-section,
    .pm-process-section,
    .pm-capabilities-section,
    .pm-solutions-section,
    .pm-tech-section,
    .pm-cta-section {
        padding: 60px 0;
    }

    .pm-hero-title {
        font-size: 28px;
    }

    .pm-hero-subtitle {
        font-size: 15px;
    }

    .section-title {
        font-size: 26px;
    }

    .overview-lead {
        font-size: 15px;
    }

    .overview-highlights {
        flex-direction: column;
        gap: 15px;
    }

    .main-img {
        height: 250px;
    }

    .experience-badge-modern {
        position: relative;
        left: 0;
        bottom: 0;
        margin-top: 15px;
        width: 100%;
        box-sizing: border-box;
    }

    .services-grid-new,
    .tech-grid {
        grid-template-columns: 1fr;
    }

    .service-card-new,
    .tech-card {
        padding: 30px 24px;
    }

    .timeline-container {
        padding-left: 0;
    }

    .timeline-line {
        left: 20px;
    }

    .timeline-block {
        padding-left: 55px;
        margin-bottom: 35px;
    }

    .timeline-number {
        left: 2px;
    }

    .timeline-content-card {
        padding: 20px;
    }

    .timeline-content-card h3 {
        font-size: 18px;
    }

    .capabilities-box,
    .solutions-box {
        padding: 30px 20px;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .btn-cta {
        width: 100%;
        justify-content: center;
    }
}
